home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / dviware / dvitovdu / unix / c / falco5220e.c < prev    next >
C/C++ Source or Header  |  1990-10-01  |  9KB  |  320 lines

  1. /* falco5220e , copied from vt220 to take advantage of falco's
  2.    larger character matrix */
  3.  
  4. /* Marc Hadley.  Kernel Technology Limited.  July 1989 */
  5.  
  6. #include "def.h"
  7.  
  8. static char *sccsid[] = "@(#)falco5220e.c    1.1";
  9.  
  10. extern Void ANSIClearTextLine(),
  11.             ANSIMoveToTextLine(),
  12.             ANSILoadFont();
  13.  
  14. extern void InitVT220();
  15.  
  16. Void FalcoShowBitmap ();
  17. Void FalcoClearScreen ();
  18. Void FalcoStartGraphics ();
  19. Void FalcoShowChar ();
  20. Void FalcoShowRectangle ();
  21. Void FalcoResetVDU ();
  22. Void FalcoLoadPixels ();
  23. Void FalcoMoveQuick ();
  24.  
  25. unsigned int  Fcursrow, Fcurscol;/* VT220ShowChar()remembers cursor location */
  26.  
  27. #define HPIXELS 1        /* horizontal pixels per char position */
  28. #define VPIXELS 4        /* vertical pixels per char position */
  29. #define FLAG 7            /* SYSDEP: to overcome a compiler limitation */
  30. #define HSCREENMAX 131        /* max horizontal char coordinate */
  31. #define VSCREENMAX 23        /* max vertical char coordinate */
  32.  
  33. typedef short FBitValue;
  34.  
  35.  /* SYSDEP: was 0..VPIXELS but compiler seemed to have trouble with an array element
  36.     size of 6 bits!!! */
  37. typedef short FByteSet;
  38.  
  39. int  Frectcount;    /* keeps a count of FalcoShowRectangle calls; reset
  40.                    in FalcoShowBitmap() */
  41. short   FBitmap[HSCREENMAX + 1][VSCREENMAX + 1];
  42.  
  43. /******************************************************************************/
  44.  
  45. void InitFalco ()
  46. {
  47.  
  48. /* The dialogue region is the top 4 lines.
  49.    The window region is the remaining area of the screen
  50.    (the bottom 20 rows in Bitmap).
  51. */
  52.  
  53.   DVIstatusl = 1;
  54.   windowstatusl = 2;
  55.   messagel = 3;
  56.   commandl = 4;
  57.   bottoml = VSCREENMAX + 1;
  58. /* DVItoVDU's coordinate scheme is the same as the Falco scheme. */
  59.   windowh = 0;
  60.   windowv = 4 * VPIXELS;    /* = height of 4 dialogue lines */
  61.   windowwd = (HSCREENMAX + 1) * HPIXELS;
  62.   windowht = (VSCREENMAX + 1) * VPIXELS - windowv;
  63.  
  64.   StartText = FalcoShowBitmap;    /* flush the graphics Bitmap */
  65.   MoveToTextLine = ANSIMoveToTextLine;
  66.   ClearTextLine = ANSIClearTextLine;
  67.   ClearScreen = FalcoClearScreen;
  68.   StartGraphics = FalcoStartGraphics;
  69.   LoadFont = ANSILoadFont;
  70.   ShowChar = FalcoShowChar;
  71.   ShowRectangle = FalcoShowRectangle;
  72.   ResetVDU = FalcoResetVDU;
  73.  
  74.   Write (ESC);
  75.   WriteString ("[?3h");        /* 132 column mode */
  76.   FalcoLoadPixels ();
  77. }
  78.  
  79. /******************************************************************************/
  80.  
  81. Void FalcoLoadPixels ()
  82. {
  83.  
  84. /* Down-load the chunky graphics character set into the Falco. */
  85.  
  86.   Write (ESC);
  87.   Write ('P');
  88.   WriteString ("<1;1;0;2{E");
  89.   WriteString ("NNNNNNNN/????????/????????;");
  90.   WriteString ("oooooooo/BBBBBBBB/????????;");
  91.   WriteString ("~~~~~~~~/BBBBBBBB/????????;");
  92.   WriteString ("????????/{{{{{{{{/????????;");
  93.   WriteString ("NNNNNNNN/{{{{{{{{/????????;");
  94.   WriteString ("oooooooo/~~~~~~~~/????????;");
  95.   WriteString ("~~~~~~~~/~~~~~~~~/????????;");
  96.   WriteString ("????????/????????/NNNNNNNN;");
  97.   WriteString ("NNNNNNNN/????????/NNNNNNNN;");
  98.   WriteString ("oooooooo/BBBBBBBB/NNNNNNNN;");
  99.   WriteString ("~~~~~~~~/BBBBBBBB/NNNNNNNN;");
  100.   WriteString ("????????/{{{{{{{{/NNNNNNNN;");
  101.   WriteString ("NNNNNNNN/{{{{{{{{/NNNNNNNN;");
  102.   WriteString ("oooooooo/~~~~~~~~/NNNNNNNN;");
  103.   WriteString ("~~~~~~~~/~~~~~~~~/NNNNNNNN");
  104.  
  105.  /* SYSDEP: compiler did not like '\' !!! */
  106.   Write (ESC);
  107.   Write (0134);
  108.  
  109.   Write (ESC);
  110.   WriteString ("*E");        /* set as G1 character set */
  111. }
  112.  
  113. /******************************************************************************/
  114.  
  115. void FalcoClearBitmap ()
  116. {
  117. /* Clear the Bitmap. */
  118.   unsigned int  h, v;
  119.  
  120.   for (v = 4; v <= VSCREENMAX; v++)/* ignore dialogue lines 0..3 */
  121.   {
  122.     for (h = 0; h <= HSCREENMAX; h++)
  123.     {
  124.       FBitmap[h][v] = 0;    /* ByteSet {} */
  125.     }
  126.   }
  127. }
  128.  
  129. /******************************************************************************/
  130.  
  131. Void FalcoShowBitmap ()
  132. {
  133.  
  134. /* Display only the flagged characters in the Bitmap. */
  135.  
  136.   unsigned int  h, v;
  137.  
  138. /*Write(SO);    assume only working over 7 bit comm lines */
  139.  
  140.   Write (ESC);
  141.   Write ('n');
  142.   for (v = 4; v <= VSCREENMAX; v++)/* ignore dialogue lines */
  143.   {
  144.     for (h = 0; h <= HSCREENMAX; h++)
  145.     {
  146.       if ((1 << FLAG) & FBitmap[h][v])
  147.       {
  148.       /* send flagged character */
  149.     FBitmap[h][v] = (FBitmap[h][v] & (~(1 << FLAG)));/* clear flag */
  150.     FalcoMoveQuick (h, v);
  151.     Write ((char) (((unsigned) FBitmap[h][v]) + 32));
  152.       }
  153.     }
  154.   }
  155.   Write (SI);            /* assume only working over 7 bit comm lines */
  156.   WriteBuffer ();
  157.   Frectcount = 0;
  158. }
  159.  
  160. /******************************************************************************/
  161.  
  162. Void FalcoClearScreen ()
  163. {
  164.   Write (ESC);
  165.   WriteString ("[2J");        /* erase entire screen */
  166.   FalcoClearBitmap ();        /* reset Bitmap */
  167. }
  168.  
  169. /******************************************************************************/
  170.  
  171. Void FalcoStartGraphics ()
  172. {
  173.  
  174. /* Note that DVItoVDU will only call LoadFont, ShowChar and ShowRectangle
  175.    while in graphics mode.
  176. */
  177.   Frectcount = 0;
  178.   Fcursrow = 0;            /* for FalcoMoveQuick() */
  179. }
  180.  
  181. /******************************************************************************/
  182.  
  183. Void FalcoMoveQuick (screenh, screenv)
  184. unsigned int  screenh, screenv;
  185. {
  186.  
  187. /* Move cursor to given screen position.
  188.    We remember the cursor position (cursrow,curscol) so we can reduce the
  189.    output bytes needed to do the next MoveQuick()
  190.    StartGraphics resets the position to an undefined state (cursrow = 0).
  191.    We also reset when the cursor reaches the right edge (= windowwd) to
  192.    avoid possibility of any auto wrap.
  193. */
  194.   unsigned int  amount;
  195.  
  196. /* first translate DVItoVDU coordinates into actual screen location */
  197.   screenh++;
  198.   screenv++;
  199.   if (Fcursrow == screenv)
  200.   {
  201.   /* The cursor is on the same line as in previous MoveQuick()call so we only need
  202.      to move left or right, and probably just a small amount (if at all). */
  203.     if (screenh == Fcurscol)
  204.     {                /* cursor in correct location */
  205.       Fcurscol++;        /* cursor will move right when ch written */
  206.     }
  207.     else
  208.       if (screenh < Fcurscol)
  209.       {
  210.       /* move cursor left */
  211.     amount = Fcurscol - screenh;
  212.     Write (ESC);
  213.     Write ('[');
  214.     if (amount > 1)
  215.     {            /* default is 1 col */
  216.       WriteCard (amount);
  217.       Fcurscol -= amount - 1;/* no need to do this if amount==1 */
  218.     }
  219.     Write ('D');
  220.       }
  221.       else            /* move cursor right */
  222.       {
  223.     amount = screenh - Fcurscol;
  224.     Write (ESC);
  225.     Write ('[');
  226.     if (amount > 1)
  227.       WriteCard (amount);    /* default is 1 col */
  228.     Fcurscol += amount + 1;
  229.     Write ('C');
  230.       }
  231.   }
  232.   else                /* cursrow undefined or ch on a new line */
  233.   {
  234.     MoveAbs (screenv, screenh);
  235.     Fcursrow = screenv;
  236.     Fcurscol = screenh + 1;    /* cursor will move right when ch written */
  237.   }
  238.   if (screenh == ((unsigned) windowwd))
  239.   {
  240.   /* ch will be written at right edge */
  241.     Fcursrow = 0;        /* so avoid auto wrap next time around */
  242.   }
  243. }
  244.  
  245. /******************************************************************************/
  246.  
  247. Void FalcoShowChar (screenh, screenv, ch)
  248. unsigned int  screenh, screenv;
  249. char  ch;
  250. {
  251.  
  252. /* Show the given Terse character (mapped to ASCII) at the given position. */
  253.  
  254.   if (Frectcount > 0)
  255.   {
  256.   /* flush Bitmap if ShowRectangle/s are pending */
  257.     FalcoShowBitmap ();
  258.   }
  259.   FalcoMoveQuick (screenh, screenv / VPIXELS);
  260.   Write (TeXtoASCII[ch]);
  261. }
  262.  
  263. /******************************************************************************/
  264. /*ARGSUSED*/
  265. Void FalcoShowRectangle (screenh, screenv,/* top left pixel */
  266.   width, height,        /* size of rectangle */
  267.   ch)                /* black pixel */
  268. unsigned int  screenh, screenv, width, height;
  269. char  ch;
  270. {
  271. /* Set the given rectangular Bitmap region.
  272.    DVItoVDU ensures the top left position is visible and the given
  273.    dimensions do not go beyond the window edges.
  274. */
  275.  
  276.   unsigned int  h, v, vrow;
  277.  
  278.   for (v = screenv; v <= screenv + height - 1; v++)
  279.   {
  280.     for (h = screenh; h <= screenh + width - 1; h++)
  281.     {
  282.     /* set bit h,v in Bitmap */
  283.       vrow = v / VPIXELS;
  284.       FBitmap[h][vrow] = (FBitmap[h][vrow] | (1 << (v % VPIXELS)));
  285.       FBitmap[h][vrow] = (FBitmap[h][vrow] | (1 << FLAG));
  286.     /* flag so char will be sent */
  287.     }
  288.   }
  289.   Frectcount++;
  290.   if (Frectcount == 400)
  291.   {
  292.   /* avoid too much of a pause before flushing Bitmap */
  293.     FalcoShowBitmap ();
  294.   }
  295. }
  296.  
  297. /******************************************************************************/
  298.  
  299. Void FalcoResetVDU ()
  300. {
  301.  
  302. /* We don't do a hardware reset, but leave VDU in 80 column mode. */
  303. /* we should really save the state in InitVT220()and restore it here */
  304.  
  305.   Write (ESC);
  306.   WriteString ("[?3l");        /* 80 column mode */
  307. }
  308.  
  309. /******************************************************************************/
  310.  
  311.  
  312.  
  313.  
  314.  
  315.  
  316.  
  317.  
  318.  
  319.  
  320.